0412a878b693d6ff10759c8ebbf51a8d1e2c8525,editor/editor-runtime/source/jetbrains/mps/nodeEditor/cells/PropertyAccessor.java,PropertyAccessor,PropertyAccessor,#SNode#String#boolean#boolean#IOperationContext#,40
Before Change
myPropertyName = propertyName;
myReadOnly = readOnly || node.getModel().isNotEditable();
myAllowEmptyText = allowEmptyText;
myPropertyDeclaration = node.getPropertyDeclaration(propertyName);
myScope = context.getScope();
}
After Change
myPropertyName = propertyName;
myReadOnly = readOnly || node.getModel().isNotEditable();
myAllowEmptyText = allowEmptyText;
myPropertyDeclaration = new SNodePointer(node.getPropertyDeclaration(propertyName));
myScope = context.getScope();
}